word.java
Language: Java
Last Modified: 2020-06-27 1:58:33 PM UTC
File Size: 2588 bytes
Last Modified: 2020-06-27 1:58:33 PM UTC
File Size: 2588 bytes
http://www.penguinstew.ca/example/hangman/word.java
publicclassword{
privateletterletters[];
privateStringcatagory;
privateintlength
;
publicword{
inti;
letterletters[]=newletter[26];
fori=0;i<26;i{
letters[i]=newletterchari65;
}
thislength=i;
thisletters=letters;
thiscatagory=none;
}
publicwordStringnameStringcatagory{
inti;
letterletters[]=newletter[namelength];
fori=0;i<namelength;i{
letters[i]=newletternamecharAti;
}
thislength=i;
thisletters=letters;
thiscatagory=catagory;
}
publiclettergetLetterinti{
returnthisletters[i];
}
publicStringgetCatagory{
returnthiscatagory;
}
publicintgetLength{
returnthislength;
}
publicbooleantryGuesscharguess{
booleangood=false;
forinti=0;i<thislength;i{
ifletters[i]getValue==CharactertoUpperCaseguess{
letters[i]setPrinttrue;
good=true;
}
}
returngood;
}
publicbooleantestGuesscharguess{
booleangood=false;
forinti=0;i<thislength;i{
ifletters[i]getValue==CharactertoUpperCaseguess{
ifletters[i]getPrint==false{
letters[i]setPrinttrue;
good=true;
}
}
}
returngood;
}
publicvoidreset{
forinti=0;i<thislength;i{
letters[i]setPrintfalse;
}
}
publicvoidprint{
Systemoutprint;
forinti=0;i<thislength;i{
ifletters[i]getPrint==true{
Systemoutprintletters[i]getValue;
Systemoutprint;
}else{
Systemoutprint_;
}
}
Systemoutprintln;
SystemoutprintCatagory:;
Systemoutprintlnthiscatagory;
}
publicvoidprintNoline{
SystemoutprintGuesses:;
forinti=0;i<thislength;i{
ifletters[i]getPrint==true{
Systemoutprintletters[i]getValue;
Systemoutprint;
}
}
Systemoutprintln;
}
publicvoidprintAll{
Systemoutprint;
forinti=0;i<thislength;i{
Systemoutprintletters[i]getValue;
Systemoutprint;
}
Systemoutprintln;
SystemoutprintCatagory:;
Systemoutprintlnthiscatagory;
}
publicbooleantest{
forinti=0;i<thislength;i{
ifletters[i]getPrint==false{
returnfalse;
}
}
returntrue;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119